home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 9 / Night Owl CD-ROM (NOPV9) (Night Owl Publisher) (1993).ISO / 003a / asmwiz16.zip / ASMWIZ.NEW < prev    next >
Text File  |  1993-05-24  |  6KB  |  164 lines

  1. AsmWiz 1.6, 05/24/93:
  2.  
  3.    Registration can now be done online on CompuServe. See the
  4.    ORDER.FRM file for details.
  5.  
  6.    A DESC.SDI file has been added to provide a short description
  7.    of AsmWiz for BBSes. This complements the longer FILE_ID.DIZ
  8.    description. REGISTER.TXT has been renamed to ORDER.FRM,
  9.    since that appears more common. ADD4DOS.BAT has been renamed
  10.    to ADDFILE.BAT. The CATALOG.TXT, ORDER.FRM, WHERE.BBS and
  11.    other files have been updated.
  12.  
  13.    Spruced up the example program (EXAMPLE.ASM, .COM, et al).
  14.  
  15.    Fixed bugs in TD_GETDATE and TD_GETTIME routines. The logic
  16.    for 2-digit vs 4-digit years was reversed and there were some
  17.    formatting errors. Thanks to Dan Sandberg for bringing this
  18.    to my attention.
  19.  
  20.    Added small U.S.-only uppercase/lowercase conversions:
  21.       S0_LOCASES, S0_UPCASES
  22.  
  23.    Added keyboard support:
  24.       BKO_GETCAPS, BKO_GETKEY, BKO_GETNUM, BK_GETCAPS,
  25.       BK_GETKEY, BK_GETNUM, DK_GETKEY, MK_SETCAPS, MK_SETNUM
  26.  
  27.  
  28.  
  29. AsmWiz 1.5, 06/30/92:
  30.  
  31.    The granularity of the AsmWiz library has been improved,
  32.    allowing for smaller programs in some cases.
  33.  
  34.    The number of countdown timers available has been doubled,
  35.    giving a total of eight timers. Two of these timers may be
  36.    used by AsmWiz, leaving six with no strings attached.
  37.  
  38.    New routines include graphics mode support for the mouse,
  39.    searching for a substring within a string, and machine-level
  40.    VGA graphics.
  41.  
  42.    Doc files have been converted to 64 col x 59 row pages to
  43.    allow printing on a greater variety of printers. The AsmWiz
  44.    documentation has been updated for current computers.
  45.  
  46.    Registration can now be done through Public (software)
  47.    Library, which allows use of credit cards. See REGISTER.TXT
  48.    for details.
  49.  
  50.  
  51.  
  52. AsmWiz 1.4, 09/09/91:
  53.  
  54.    All source code has been converted from OPTASM to MASM 6.0.
  55.    While I've been a great fan of OPTASM in the past, SLR hasn't
  56.    updated it in ages, and it still doesn't support 80386 code.
  57.    As of v6.0, MASM has improved to the point that I'm willing
  58.    to use it instead.
  59.  
  60.  
  61.  
  62. AsmWiz 1.3, 01/29/91:
  63.  
  64.    The registration fee has been reduced.
  65.  
  66.    A table of contents was added to the ASMWIZ.DOC manual.
  67.  
  68.    The EXECOM utility is now included. This is an improved
  69.    replacement for EXE2BIN which converts .EXE files to .COM
  70.    files.
  71.  
  72.    The demo program has been modified to assemble directly under
  73.    A86, MASM, QuickASM, and TASM. OPTASM, of course, is also
  74.    still supported.
  75.  
  76.    A window frame maker has been added. A variety of frames is
  77.    provided and you may also create your own custom frames.
  78.       MV_FRAME
  79.  
  80.  
  81.  
  82. AsmWiz 1.2, 03/10/90:
  83.  
  84.    The S0_MID service has been fixed to work properly even if
  85.    you specify more characters than are available in the source
  86.    string.
  87.  
  88.    Filename manipulation services have been added. These allow
  89.    you to split a path into drive, directory, and filename
  90.    specs, make any path a complete and unambiguous
  91.    specification, translate a filename through a pattern, etc.
  92.    The MI_MATCHFILE service has been renamed to FI_MATCH.
  93.       FI_COMPLETE, FI_PATTERN, FI_SPLIT
  94.       FI_MATCH (formerly MI_MATCHFILE)
  95.  
  96.    File handling services have been added. These provide
  97.    automatic network compatibility, optional input buffering,
  98.    and other conveniences.
  99.       DF_CLOSE, DF_DONE, DF_FLUSH, DF_GETTIME, DF_HANDLE, DF_INIT,
  100.       DF_LOCATE, DF_OPEN, DF_READ, DF_TIME, DF_WHERE, DF_WRITE
  101.  
  102.    The Exception Services were extended to include critical
  103.    error handling.
  104.       EH_CRITDONE, EH_CRITERR, EH_INITCRIT
  105.  
  106.    Machine-level graphics services were added for Hercules, CGA
  107.    and EGA.
  108.       G4_BOX, G4_GETPEL, G4_LINE, G4_PLOT
  109.       G6_BOX, G6_GETPEL, G6_LINE, G6_PLOT
  110.       GD_BOX, GD_LINE, GD_PLOT
  111.       GE_BOX, GE_LINE, GE_PLOT
  112.       GH_BOX, GH_GETPEL, GH_LINE, GH_PLOT
  113.  
  114.    The ability to get the current screen mode was added to the
  115.    various text display services.
  116.       BV_GETMODE, MV_GETMODE
  117.  
  118.    The ability to handle files in the BSAVE format (used by
  119.    BASIC) was added.
  120.       ME_BINFO, ME_BLOAD, ME_BSAVE
  121.  
  122.  
  123.  
  124. AsmWiz 1.1, 02/11/90:
  125.  
  126.    A bug was eliminated from the pop-up window services. It had
  127.    caused windows to be smaller than expected.
  128.  
  129.    The example program has been prettied up, inside and out.
  130.    Since colors are now used, a "/B" option has been added for
  131.    folks using CGAs attached to monochrome monitors (the one
  132.    non-color setup AsmWiz can't detect).
  133.  
  134.    A bibliography of references used in creating AsmWiz has been
  135.    added.
  136.  
  137.    You can now find out what kind of display adapter and monitor
  138.    are in use.
  139.       MI_GETSCREEN
  140.  
  141.    The ability to automatically convert colors to their
  142.    monochrome equivalent has been added to the various text
  143.    display services.
  144.       BV_FIXCOLOR, DV_FIXCOLOR, MV_FIXCOLOR
  145.  
  146.    Exception Handling services have been added. These allow your
  147.    program to take control over ^C and ^Break.
  148.       EH_ADDBREAK, EH_INITBREAK, EH_SETBREAK, EH_SUBBREAK
  149.  
  150.    Machine-level Video services have been added to save or
  151.    restore any part of the screen.
  152.       MV_SAVESIZE, MV_SCRREST, MV_SCRSAVE
  153.  
  154.    Machine-level Video services have been added for Hercules
  155.    graphics mode. These provide 90x43 text support.
  156.       HG_CHROUT, HG_CLEOLN, HG_CLS, HG_COLOR, HG_CRLF,
  157.       HG_GETCOLOR, HG_LOCATE, HG_MODE, HG_STROUT, HG_WHERE
  158.  
  159.  
  160.  
  161. AsmWiz 1.0, 01/30/90:
  162.  
  163.    This is the initial release of the Assembly Wizard's Library.
  164.